home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINSOUND / CHIMES.ZIP / DCEMIDI.CPP < prev    next >
C/C++ Source or Header  |  1993-08-06  |  348b  |  20 lines

  1. #include <afxwin.h>
  2. #include "dcemidi.h"
  3.  
  4. void
  5. dmidiSendChannelMessage(HMIDIOUT hMidi, BYTE channel, BYTE status,
  6.   BYTE data1, BYTE data2)
  7. {
  8.      union {
  9.         DWORD dwData;
  10.         BYTE bData[4];
  11.     } mu;
  12.     
  13.     mu.bData[0] = status | channel;
  14.     mu.bData[1] = data1;
  15.     mu.bData[2] = data2;
  16.     mu.bData[3] = 0;
  17.     midiOutShortMsg(hMidi, mu.dwData);
  18. }
  19.     
  20.